(C) 1996 AROS - The Amiga Replacement OS


NAME
#include <intuition/intuition.h>
#include <proto/intuition.h>
void NewModifyProp()
SYNOPSIS
struct Gadget * gadget
struct Window * window
struct Requester * requester
ULONG flags
ULONG horizPot
ULONG vertPot
ULONG horizBody
ULONG vertBody
LONG numGad

LOCATION
In IntuitionBase at offset 78
FUNCTION
Changes the values in the PropInfo-structure of a proportional gadget and refreshes the specified number of gadgets beginning at the proportional gadget. If numGad is 0 (zero), then no refreshing is done.

INPUTS
gadget
Must be a PROPGADGET
window
The window which contains the gadget
requester
If the gadget has GTYP_REQGADGET set, this must be
non
NULL.
flags
New flags
horizPot
New value for the HorizPot field of the PropInfo
vertPot
New value for the VertPot field of the PropInfo
horizBody
New value for the HorizBody field of the PropInfo
vertBody
New value for the VertBody field of the PropInfo
numGad
How many gadgets to refresh. 0 means none (not even
and
1 means all of them.
RESULT
None.

NOTES
EXAMPLE
BUGS
SEE ALSO
NewModifyProp(), RefreshGadgets(), RefreshGList()
INTERNALS
HISTORY
27.01.1997 ldp
Polish
10.12.1996 aros
Moved #include into first column to allow makedepend to see it.
08.11.1996 aros
All OS function use now Amiga types

Moved intuition-driver protos to intuition_intern.h

24.10.1996 aros
Use the official AROS macros over the __AROS versions.
10.10.1996 digulla
New function: NewModifyProp()